/* ========================================
    STRUCTURED CABLING PAGE CSS
   ======================================== */

/* Hero Section */
.structured-hero-section {
  position: relative;
  min-height: 500px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.structured-hero-section .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.structured-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.structured-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

.structured-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}

.structured-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  margin: 0;
  padding: 0;
  z-index: 3;
}

.structured-hero-left {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 80px 0 80px 100px;
  margin-left: 100px;
  color: white;
}

.structured-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  color: #179267;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  text-align: left;
}

.structured-hero-left p {
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-bottom: 35px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  text-align: left;
}

/* Structured Cabling Section */
.structured-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.structured-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.structured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.structured-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
}

.structured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2), 0 16px 32px rgba(0,0,0,0.25);
}

.structured-card.animate {
  animation: slideUp 0.6s ease forwards;
}

.structured-card:nth-child(1).animate {
  animation-delay: 0.1s;
}

.structured-card:nth-child(2).animate {
  animation-delay: 0.2s;
}

.structured-card:nth-child(3).animate {
  animation-delay: 0.3s;
}

.structured-card:nth-child(4).animate {
  animation-delay: 0.4s;
}

.structured-card:nth-child(5).animate {
  animation-delay: 0.5s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.structured-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.structured-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.structured-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structured-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Build Your Network Section */
.build-section {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  min-height: 500px;
}

.build-section .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.build-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  margin: 0;
  padding: 0;
}

.build-left {
  position: relative;
  z-index: 3;
  max-width: 550px;
  padding: 80px 0 80px 100px;
  margin-left: 100px;
}

.build-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
}

.build-left h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.build-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
}

.build-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.build-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.build-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .structured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .structured-hero-left,
  .build-left {
    padding: 60px 40px;
    margin-left: 0;
  }
  
  .structured-hero-background::after,
  .build-right::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .build-right::before {
    background: rgba(255, 255, 255, 0.9);
  }
  
  .structured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .structured-hero-left h1 {
    font-size: 42px;
  }
  
  .build-left h2 {
    font-size: 36px;
  }
  
  .build-left h3 {
    font-size: 16px;
  }
  
  .structured-section h2 {
    font-size: 28px;
  }
  
  .structured-hero-left,
  .build-left {
    padding: 40px 20px;
  }
  
  .structured-grid {
    grid-template-columns: 1fr;
  }
}